
.carousel {
  position: relative;
  width: 100%;
  overflow-x: auto; /* Enable horizontal scroll for user interaction */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  white-space: nowrap;
  display: flex;
  scroll-behavior: smooth;
  animation: infiscroll 20s linear infinite;
  will-change: transform; /* Hint for GPU acceleration */
  /* Avoid position: absolute to prevent some iOS rendering bugs */
}

.carousel.paused {
  animation-play-state: paused;
}

.carousel .embla__slide {
  flex: 0 0 auto;
  margin: 0 0.5rem;
  max-height: 300px;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  user-select: none;
  -webkit-user-select: none; /* Disable text selection on iOS */
  -webkit-touch-callout: none; /* Disable callout on long tap */
}

.carousel img {
  display: block;
  max-height: 300px;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  pointer-events: auto;
}

@keyframes infiscroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.mb-4>div {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    display: block !important;
}

.mb-4>div[style*="display: block"] {
    max-height: 500px;
    /* or enough to fit your largest content */
    opacity: 1;
}

.mb-4>div[style*="display: none"] {
    max-height: 0;
    opacity: 0;
}
.Temp{
    border-color: rgb(99 229 240);
    color: #00d9ff;
}